# positiveNumberFromUser.py # # Description: This program Asks the user to enter a positive # number and verifies that the user has done so. # # Remember: Zero (0)is defined as neither negative nor positive. # Thank you, Wiki! # # Author: Anne Lavergne # Date: W Jan. 17 2024 # Ask the user for a number number = int(input('Please, enter a positive number: ')) # Echo the user's input print(f'You have entered {number}.') # Verify that the user’s input satisfied the requirement if number <= 0: print(f'Sorry! {number} is not a positive number!')